Skip to content

chore(deps): update all non-major dependencies#225

Merged
renovate[bot] merged 1 commit into
mainfrom
renovate/all-minor-patch
May 12, 2025
Merged

chore(deps): update all non-major dependencies#225
renovate[bot] merged 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 12, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) ^22.15.3 -> ^22.15.17 age adoption passing confidence
@vitest/ui (source) ^3.1.2 -> ^3.1.3 age adoption passing confidence
esbuild ~0.25.3 -> ~0.25.4 age adoption passing confidence
rollup (source) ^4.40.1 -> ^4.40.2 age adoption passing confidence
tsdown ^0.10.2 -> ^0.11.4 age adoption passing confidence
vite (source) ^6.3.4 -> ^6.3.5 age adoption passing confidence
vitest (source) ^3.1.2 -> ^3.1.3 age adoption passing confidence

Release Notes

vitest-dev/vitest (@​vitest/ui)

v3.1.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
evanw/esbuild (esbuild)

v0.25.4

Compare Source

  • Add simple support for CORS to esbuild's development server (#​4125)

    Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as "debugging in production" by having your production website load code from localhost where the esbuild development server is running.

    To enable this use case, esbuild is adding a feature to allow Cross-Origin Resource Sharing (a.k.a. CORS) for simple requests. Specifically, passing your origin to the new cors option will now set the Access-Control-Allow-Origin response header when the request has a matching Origin header. Note that this currently only works for requests that don't send a preflight OPTIONS request, as esbuild's development server doesn't currently support OPTIONS requests.

    Some examples:

    • CLI:

      esbuild --servedir=. --cors-origin=https://example.com
      
    • JS:

      const ctx = await esbuild.context({})
      await ctx.serve({
        servedir: '.',
        cors: {
          origin: 'https://example.com',
        },
      })
    • Go:

      ctx, _ := api.Context(api.BuildOptions{})
      ctx.Serve(api.ServeOptions{
        Servedir: ".",
        CORS: api.CORSOptions{
          Origin: []string{"https://example.com"},
        },
      })

    The special origin * can be used to allow any origin to access esbuild's development server. Note that this means any website you visit will be able to read everything served by esbuild.

  • Pass through invalid URLs in source maps unmodified (#​4169)

    This fixes a regression in version 0.25.0 where sources in source maps that form invalid URLs were not being passed through to the output. Version 0.25.0 changed the interpretation of sources from file paths to URLs, which means that URL parsing can now fail. Previously URLs that couldn't be parsed were replaced with the empty string. With this release, invalid URLs in sources should now be passed through unmodified.

  • Handle exports named __proto__ in ES modules (#​4162, #​4163)

    In JavaScript, the special property name __proto__ sets the prototype when used inside an object literal. Previously esbuild's ESM-to-CommonJS conversion didn't special-case the property name of exports named __proto__ so the exported getter accidentally became the prototype of the object literal. It's unclear what this affects, if anything, but it's better practice to avoid this by using a computed property name in this case.

    This fix was contributed by @​magic-akari.

rollup/rollup (rollup)

v4.40.2

Compare Source

2025-05-06

Bug Fixes
  • Create correct IIFE/AMD/UMD bundles when using a mutable default export (#​5934)
  • Fix execution order when using top-level await for dynamic imports with inlineDynamicImports (#​5937)
  • Throw when the output is watched in watch mode (#​5939)
Pull Requests
rolldown/tsdown (tsdown)

v0.11.4

Compare Source

   🚀 Features
    View changes on GitHub

v0.11.3

Compare Source

   🚀 Features
    View changes on GitHub

v0.11.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.11.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.11.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
vitejs/vite (vite)

v6.3.5

Compare Source


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot merged commit d9a1e22 into main May 12, 2025
8 checks passed
@renovate renovate Bot deleted the renovate/all-minor-patch branch May 12, 2025 05:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants